splitmov extracts media streams from QuickTime or AVI file src and put them into separate files. The video stream is put into a movie-file (.mov or .avi) and the audio stream is put into a sound-file (.au or .wav file). The audio data in QuickTime/AVI file recorded by ShowMe TV is mono, 8 kHz (sampling rate), 8-bit (sample size) and u-law encoded. To play a movie recorded by ShowMe TV on Mac or PC, you should use JPEG video codec from ShowMe TV version 2.0 and then convert audio data to Mac or PC acceptable audio format. sox is a public domain software that you need for audio conversion. Unless the -s option is specified, the movie information from src is always listed (stdout).
mergemov combines video stream from a movie-file and audio stream from sound-file into a single movie file dst. The audio stream in movie-file is always ignored.
catmov concatenate multiple movie files src into a single movie file dst. All the source movie files must have the same video CODEC and same audio characteristics. Although it allows movies with different frame rate to be concatentated, this feature is not portable, especially for AVI file. Unless the -s option is specified, the movie information of each src is always listed (stdout).
To convert QuickTime movie from ShowMe TV for Mac:
splitmov -s -a tmp1.au src.mov
sox tmp1.au -r 11127 -s -w -c 1 tmp2.au
mergemov -v src.mov -a tmp2.au dst.mov
To convert QuickTime movie from ShowMe TV to AVI for PC:
splitmov -s -a tmp1.au src.mov
sox tmp1.au -r 11025 -u -b -c 1 tmp2.wav
mergemov -v src.mov -a tmp2.wav dst.avi
audiotool(1)
ShowMe TV User's Manual
sox - Lance Norskog (thinman@netcom.com)